home *** CD-ROM | disk | FTP | other *** search
/ Tech Arsenal 1 / Tech Arsenal (Arsenal Computer).ISO / tek-04 / zbpc_460.zip / TUTOR.EXE / CONFIG1.DOC < prev    next >
Text File  |  1988-11-04  |  2KB  |  43 lines

  1.         Configuring the ZBASIC Compiler
  2. ...
  3. The first step in using the ZBASIC compiler is setting your
  4. configuration options. These may be saved, and you can have
  5. multiple ZBASIC versions with different default settings,
  6. such as single precision default, double precision default,
  7. mouse supported, and so on.
  8. ...
  9. To configure, select Configure at the main ZBASIC startup
  10. menu or type CONFIGURE while within the editor. You will
  11. then be presented with these options Double Precision Accuracy,
  12. Single Precision Accuracy, and Scientific Precision Accuracy.
  13. With these you can specify the number of decimal places to which
  14. the calculations are carried. The more decimal places, the
  15. slower the program will run.
  16. ...
  17. Next you select the maximum number of files open at any
  18. time (this replaces the /F: option in BASIC and may be changed
  19. at any time). In the demo version of ZBASIC only one file may
  20. be opened.
  21. ...
  22. Array base (0 or 1) lets you specify whether the lowest member
  23. of arrays is X(0) or X(1). Rounding number allows you to alter
  24. the normal round-off of .5.
  25. ...
  26. Default variable type allows you to vary from BASIC's Single
  27. Precision Default. Test Array Bounds will check to see if the
  28. program can assign array members outside the dimension of the
  29. array. This slows program execution, but can speed debugging.
  30. Convert to Upper Case allows you to treat variable names equal
  31. regardless of case. If "Y" then the variable FRED is the same
  32. as fred or FrEd, otherwise they are different variables. ZBASIC
  33. variable names can be as long as 240 characters, and the first
  34. 15 letters in the variable name are significant.
  35. ...
  36. Spaces between keywords "N" means you can do this:
  37. 100 IFX=100THENPRINT"100"ELSEPRINT"Not 100"
  38. but you cannot embed keywords in a variable name. Whatever
  39. makes you feel comfortable.
  40. ...
  41. Optimize expression as integer? selects between integer and
  42. floating point.
  43.